home *** CD-ROM | disk | FTP | other *** search
/ Total Network Tools 2002 / NextStepPublishing-TotalNetworkTools2002-Win95.iso / Archive / Misc Servers / Zope.exe / DTML-COMMENT.STX < prev    next >
Encoding:
Text File  |  2000-10-12  |  748 b   |  39 lines

  1. comment: Comments DTML
  2.  
  3.     The comment tag lets you document your DTML with comments. You can
  4.     also use it to temporarily disable DTML tags by commenting them
  5.     out.
  6.  
  7.   Syntax
  8.  
  9.     'comment' tag syntax::
  10.  
  11.       <dtml-comment>
  12.       </dtml-comment>
  13.  
  14.     The 'comment' tag is a block tag. The contents of the block are
  15.     not executed, nor are they inserted into the DTML output.
  16.  
  17.   Examples
  18.  
  19.     Documenting DTML::
  20.  
  21.       <dtml-comment>
  22.         This content is not executed and does not appear in the
  23.         output.
  24.       </dtml-comment>
  25.  
  26.     Commenting out DTML::
  27.  
  28.       <dtml-comment>
  29.         This DTML is disabled and will not be executed.
  30.         <dtml-call someMethod>
  31.       </dtml-comment>
  32.  
  33.  
  34.  
  35.  
  36.  
  37.  
  38.  
  39.